home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / utils / dos / makefile < prev    next >
Makefile  |  1995-04-18  |  360b  |  21 lines

  1.  
  2. CFLAGS = -nologo -AS -c
  3.  
  4. all : mv.exe cp.exe rm.exe touch.exe
  5.  
  6. mv.exe : mv.obj
  7.     link /BATCH mv setargv /NOI /NOE ;
  8.  
  9. cp.exe : cp.obj
  10.     link /BATCH cp setargv,,nul.map,/NOI/NOE/STACK:8000;
  11.  
  12. cp.obj : cp.c
  13.     cl -AL -c -nologo cp.c
  14.  
  15. rm.exe : rm.obj
  16.     link /BATCH rm setargv /NOI /NOE;
  17.  
  18. touch.exe : touch.obj
  19.     link /BATCH touch setargv /NOI /NOE;
  20.  
  21.